home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / WANDR330.ZIP / SRC / MAKEFILE.ST < prev    next >
Encoding:
Text File  |  1990-07-23  |  707 b   |  25 lines

  1. # Makefile for Atari ST TOS
  2. # This ST version of wanderer was compiled using the GNU C compiler, v1.37.1.
  3. # bjr@watserv1.waterloo.edu, jun 27/90
  4.  
  5. OBJ = monsters.o m.o save.o jump.o display.o icon.o game.o read.o help.o fall.o scores.o edit.o encrypt.o
  6.  
  7. CFLAGS = -O -fomit-frame-pointer -fcombine-regs -DTOS -DLINT_ARGS
  8. CFLAGS2 = -O -fomit-frame-pointer -fcombine-regs -DTOS
  9. LIBS = -lcurses
  10. CC = gcc
  11.  
  12. all:    wanderer password convert
  13.     @echo DONE
  14.  
  15. wanderer:    $(OBJ)
  16.     $(CC) $(CFLAGS) -o wanderer.ttp $(OBJ) $(LIBS)
  17.  
  18. convert: convert.c wand_head.h
  19.     $(CC) $(CFLAGS2) -o convert.ttp convert.c
  20.  
  21. password: password.c wand_head.h
  22.     $(CC) $(CFLAGS) -o password.ttp password.c
  23.  
  24. $(OBJ): wand_head.h
  25.